runtime.funcInfo.entry (method)
36 uses
runtime (current package)
debugcall.go#L83: if pc != f.entry() {
debuglog.go#L816: if returnPC && (!fn.valid() || pc > fn.entry()) {
debuglog.go#L828: print(" [", name, "+", hex(pc-fn.entry()),
heapdump.go#L260: if pc != f.entry() {
heapdump.go#L285: dumpint(uint64(f.entry()))
heapdump.go#L635: if i > 0 && pc > f.entry() {
panic.go#L702: d1.pc = frame.fn.entry() + uintptr(frame.fn.deferreturn)
plugin.go#L115: entry2 = f2.entry()
preempt.go#L444: return true, f.entry()
print.go#L295: print("<", funcname(fn), "+", hex(val-fn.entry()), "> ")
stack.go#L990: pcoff = gp.sched.pc - f.entry()
stkframe.go#L126: if frame.pc != f.entry() {
stkframe.go#L127: print("runtime: confused by ", funcname(f), ": no frame (sp=", hex(frame.sp), " fp=", hex(frame.fp), ") at entry+", hex(frame.pc-f.entry()), "\n")
stkframe.go#L138: if mv.fn != f.entry() {
stkframe.go#L166: if targetpc != f.entry() {
symtab.go#L669: entry: f.entry(), // entry of the real (the outermost) function.
symtab.go#L698: return fn.funcInfo().entry()
symtab.go#L762: func (f funcInfo) entry() uintptr {
symtab.go#L874: println("runtime: no module data for", hex(f.entry()))
symtab.go#L881: pc := f.entry()
symtab.go#L886: p, ok = step(p, &pc, &val, pc == f.entry())
symtab.go#L923: pc = f.entry()
symtab.go#L927: p, ok = step(p, &pc, &val, pc == f.entry())
symtab.go#L996: print("invalid spdelta ", funcname(f), " ", hex(f.entry()), " ", hex(targetpc), " ", hex(f.pcsp), " ", x, "\n")
symtab.go#L1006: pc := f.entry()
symtab.go#L1011: p, ok = step(p, &pc, &val, pc == f.entry())
symtabinl.go#L85: return u.resolveInternal(u.f.entry() + uintptr(parentPc))
traceback.go#L429: frame.continpc = frame.fn.entry() + uintptr(frame.fn.deferreturn) + 1
traceback.go#L586: if u.flags&unwindTrap == 0 && u.frame.pc > u.frame.fn.entry() {
traceback.go#L811: if pc > f.entry() {
traceback.go#L816: if pc > f.entry() {
traceback.go#L817: print(" +", hex(pc-f.entry()))
traceback.go#L1021: if u.frame.pc > f.entry() {
traceback.go#L1022: print(" +", hex(u.frame.pc-f.entry()))
traceback.go#L1096: if pc > f.entry() {
traceback.go#L1097: print(" +", hex(pc-f.entry()))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |